From: Jan Beulich Date: Sat, 17 Sep 2011 15:25:53 +0000 (+0100) Subject: x86/tboot: make resume error messages visible X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~9889 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https://%22%22/%22http:/www.example.com/cgi/%22https:/%22%22?a=commitdiff_plain;h=a21a59fdfd162b3b47aa58c8d3e88a3de7b93221;p=xen.git x86/tboot: make resume error messages visible With tboot_s3_resume() running before console_resume(), the error messages so far printed by it are mostly guaranteed to go into nirwana. Latch MACs into a static variable instead, and issue the messages right before calling panic(). Signed-off-by: Jan Beulich --- diff --git a/xen/arch/x86/acpi/power.c b/xen/arch/x86/acpi/power.c index 935c9a1101..7bcc381fe4 100644 --- a/xen/arch/x86/acpi/power.c +++ b/xen/arch/x86/acpi/power.c @@ -193,7 +193,7 @@ static int enter_state(u32 state) printk(XENLOG_INFO "Finishing wakeup from ACPI S%d state.\n", state); if ( (state == ACPI_STATE_S3) && error ) - panic("Memory integrity was lost on resume (%d)\n", error); + tboot_s3_error(error); done: spin_debug_enable(); diff --git a/xen/arch/x86/tboot.c b/xen/arch/x86/tboot.c index 1d78ec6a74..b9aa32d13a 100644 --- a/xen/arch/x86/tboot.c +++ b/xen/arch/x86/tboot.c @@ -481,35 +481,50 @@ int __init tboot_parse_dmar_table(acpi_table_handler dmar_handler) return rc; } +static vmac_t orig_mac, resume_mac; + int tboot_s3_resume(void) { - vmac_t mac; - if ( !tboot_in_measured_env() ) return 0; /* need to do these in reverse order of shutdown */ - tboot_gen_xenheap_integrity(g_tboot_shared->s3_key, &mac); - printk("MAC for xenheap before S3 is: 0x%08"PRIx64"\n", xenheap_mac); - printk("MAC for xenheap after S3 is: 0x%08"PRIx64"\n", mac); - if ( mac != xenheap_mac ) + tboot_gen_xenheap_integrity(g_tboot_shared->s3_key, &resume_mac); + orig_mac = xenheap_mac; + if ( resume_mac != xenheap_mac ) return -1; - tboot_gen_frametable_integrity(g_tboot_shared->s3_key, &mac); - printk("MAC for frametable before S3 is: 0x%08"PRIx64"\n", frametable_mac); - printk("MAC for frametable after S3 is: 0x%08"PRIx64"\n", mac); - if ( mac != frametable_mac ) + tboot_gen_frametable_integrity(g_tboot_shared->s3_key, &resume_mac); + orig_mac = frametable_mac; + if ( resume_mac != frametable_mac ) return -2; - tboot_gen_domain_integrity(g_tboot_shared->s3_key, &mac); - printk("MAC for domains before S3 is: 0x%08"PRIx64"\n", domain_mac); - printk("MAC for domains after S3 is: 0x%08"PRIx64"\n", mac); - if ( mac != domain_mac ) + tboot_gen_domain_integrity(g_tboot_shared->s3_key, &resume_mac); + orig_mac = domain_mac; + if ( resume_mac != domain_mac ) return -3; return 0; } +void tboot_s3_error(int error) +{ + const char *what = "???"; + + BUG_ON(!error || !tboot_in_measured_env()); + + switch ( error ) + { + case -1: what = "Xen heap"; break; + case -2: what = "frame table"; break; + case -3: what = "domains"; break; + } + + printk("MAC for %s before S3 is: 0x%08"PRIx64"\n", what, orig_mac); + printk("MAC for %s after S3 is: 0x%08"PRIx64"\n", what, resume_mac); + panic("Memory integrity was lost on resume (%d)\n", error); +} + /* * Local variables: * mode: C diff --git a/xen/include/asm-x86/tboot.h b/xen/include/asm-x86/tboot.h index 0474da0f7b..d57d0ccff6 100644 --- a/xen/include/asm-x86/tboot.h +++ b/xen/include/asm-x86/tboot.h @@ -119,6 +119,7 @@ int tboot_in_measured_env(void); int tboot_protect_mem_regions(void); int tboot_parse_dmar_table(acpi_table_handler dmar_handler); int tboot_s3_resume(void); +void tboot_s3_error(int error); #endif /* __TBOOT_H__ */